Java API

您所在的位置:网站首页 treemap api Java API

Java API

#Java API | 来源: 网络整理| 查看: 265

package treemapdemos; import java.util.Set; import java.util.TreeMap; /** * Created by gao on 15-12-22. */ /* * TreeMap:是基于红黑树的Map接口的实现。 * HashMap * 键:String * 值:String */ public class TreeMapDemo01 { public static void main(String[] args) { // 创建集合对象 TreeMap tm = new TreeMap(); // 创建元素并添加元素 tm.put("hello", "你好"); tm.put("world", "世界"); tm.put("java", "爪哇"); tm.put("world", "世界2"); tm.put("javaee", "爪哇EE"); // 遍历集合 Set set = tm.keySet(); for (String key : set) { String value = tm.get(key); System.out.println(key + "---" + value); } } }

输出结果:(唯一和自然排序)

hello---你好 java---爪哇 javaee---爪哇EE world---世界2   例子2: package treemapdemos; import java.util.Comparator; import java.util.Set; import java.util.TreeMap; /** * Created by gao on 15-12-22. */ /* * TreeMap * 键:Student * 值:String */ public class TreeMapDemo02 { public static void main(String[] args) { // 创建集合对象 TreeMap tm = new TreeMap(new Comparator() { @Override public int compare(Student s1, Student s2) { int num = s1.getAge() - s2.getAge(); int num2 = num == 0 ? s1.getName().compareTo(s2.getName()) : num; return num2; } }); // 创建学生对象 Student s1 = new Student("潘安", 30); Student s2 = new Student("柳下惠", 35); Student s3 = new Student("唐伯虎", 33); Student s4 = new Student("燕青", 32); Student s5 = new Student("唐伯虎", 33); // 存储元素 tm.put(s1, "宋朝"); tm.put(s2, "元朝"); tm.put(s3, "明朝"); tm.put(s4, "清朝"); tm.put(s5, "汉朝"); // 遍历 Set set = tm.keySet(); for (Student key : set) { String value = tm.get(key); System.out.println(key.getName() + "---" + key.getAge() + "---" + value); } } } 输出结果:(唯一和排序) 潘安---30---宋朝 燕青---32---清朝 唐伯虎---33---汉朝 柳下惠---35---元朝      


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3